home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / feel0_89.lha / Feel / Src / swag.c < prev    next >
C/C++ Source or Header  |  1993-02-02  |  109b  |  9 lines

  1. extern int value;
  2.  
  3. void stack_switch_and_go(int stack,int fun)
  4. {
  5.   value = stack;
  6.   ((void (*)()) fun)();
  7. }
  8.  
  9.